home *** CD-ROM | disk | FTP | other *** search
/ Amiga Game-Power / Amiga Game-Power.iso / power games ii / tetrix / ilbm2c / readme < prev    next >
Text File  |  1994-05-20  |  2KB  |  53 lines

  1. These files were written 12/23/87 and 12/24/87.  Descriptions are given at
  2. the beginning of the C files.
  3.  
  4. Tim Kemp
  5. P.O. 23101
  6. Columbus, OH 43223
  7.  
  8. [Ed. note: For convenience, the descriptions have been excerpted and 
  9.  inserted below. -Fred ><>]
  10.  
  11. From ILBM2C.c
  12. ---------------------------------------------------------------------------
  13. /*  ILBM to C includable converter
  14.  
  15.     It seems as if there should be many versions of this type of utility.
  16.     When I went looking I couldn't find any, so I wrote this.  It was
  17.     compiled with Manx 3.4.
  18.     
  19.     This program reads in an IFF ILBM file and outputs a file you can include
  20.     in your C program.  It does not handle files with a real mask (although
  21.     it would be easy to incorporate that).  There should be a short demo
  22.     program with this to show how to use the file this creates.
  23.     
  24.     To use this program: ILBM2C infile outfile
  25.     
  26.     (This program is NOT very fast at reading large ILBM files. It has a
  27.     tendency to sit and churn for quite a while.)
  28.     
  29.     I have decided to put this program into the public domain.  Feel free to
  30.     do with it what you want, but please leave enough of this original header
  31.     that it is obvious where the program came from and what it is for.
  32.     
  33.     If you have comments, questions or spare cash, send them to:
  34.     
  35.         Tim Kemp
  36.         P.O. Box 23101
  37.         Columbus, Ohio 43223
  38. */
  39. ===========================================================================
  40.  
  41. From example.c:
  42. ---------------------------------------------------------------------------
  43. /* Demonstration using file created by to IFF ILBM to includable C converter
  44.  
  45.     This program opens a screen and displays as many copies of the picture
  46.     as will fit.  The picture was draw by my father, Floyd Kemp.
  47.     
  48.     As you will see if you compile this, the arrays should be put into a
  49.     separate file and compiled only once.  I left it in this file to make
  50.     sure that the parts stayed together.
  51. */
  52. ===========================================================================
  53.